LongIterator

abstract class LongIterator : Iterator<Long>

An iterator over a sequence of values of type Long.

Constructors

LongIterator
Link copied to clipboard
fun LongIterator()

Functions

hasNext
Link copied to clipboard
abstract operator fun hasNext(): Boolean
next
Link copied to clipboard
operator override fun next(): Long
nextLong
Link copied to clipboard
abstract fun nextLong(): Long

Returns the next value in the sequence without boxing.